home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / dobbs / v17n02 / inhook.exe / MAKEFILE < prev   
Encoding:
Text File  |  1991-05-08  |  819 b   |  29 lines

  1. #############################################################################
  2. #                                        #
  3. #    MAKE file for INTHOOK example and helper programs                #
  4. #                                        #
  5. #    Written by Walter Oney                            #
  6. #    Intended for use with Microsoft C 6.0A & MASM 5.1                #
  7. #                                        #
  8. #############################################################################
  9.  
  10. all: inthook.exe int60.com int61.com
  11.  
  12. inthook.obj: inthook.c
  13.     cl -AS -Zlipe -c -Gsw2 -Ows -W3 inthook.c >inthook.err
  14.  
  15. inthook.exe: inthook.obj
  16.     link /noe /nod /co /m inthook,inthook,inthook,slibcaw libw,inthook;
  17.     rc inthook.exe
  18.     mapsym inthook
  19.  
  20. int60.com: int60.asm
  21.     masm int60;
  22.     link int60;
  23.     exe2bin int60 int60.com
  24.  
  25. int61.com: int61.asm
  26.     masm int61;
  27.     link int61;
  28.     exe2bin int61 int61.com
  29.